Class OrangeButtonWriter {
ClassLoader kl =
this.getClass().getClassLoader();
OurButton b = Beans.instantiate(kl,
"OurButton");
b.setBackground(Color.orange);
ObjectOutputStream os = new
ObjectOutputStream(new FileOutputStream("OrangeButton.ser"));
os.witeObject(b);
}
|